home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 44 / Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso / -serious- / wb / merlin / rexx / test1.rexx < prev    next >
OS/2 REXX Batch file  |  1999-07-12  |  841b  |  42 lines

  1. /* RUN "rx MCP:rexx/CelsiusToFahrenheit.rexx %n"   */
  2.  
  3. Arg node_number                         /* node we were run from */
  4. Host = 'MCPREXX.'node_number            /* the Trion MCP Arexx port */
  5. Options results
  6. Address value host
  7. options failat 15
  8.  
  9.  
  10. /* say "node: "node_number */
  11. if node_number = "" then do
  12.    say "error .. rexx script not started with %n on command line"
  13.    exit 1
  14. end
  15.  
  16.  
  17. ReadState "ID 3"
  18. State3 = result
  19. say "State:" State3
  20.  
  21. ReadState "ID 4"
  22. State4 = result
  23. say "State:" State4
  24.  
  25. ChangeState "4" State3
  26. ChangeState "3" State4
  27.  
  28. /* WriteString "1" test  */          /* Buttons need a little work */
  29. WriteString "5" test
  30.  
  31. /* Note the Underscores replacing spaces !! */
  32.  
  33. AddToList "6 STRING list_tst RUN test_tst"
  34.  
  35. exit 0                         /* einde programma */
  36.  
  37.  
  38.  
  39. test:          /*  een functie: 'call test' */
  40. return 0
  41.  
  42.